home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / LINEDAVA.HDR < prev    next >
Text File  |  1994-04-25  |  1KB  |  42 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _LineEditAvail(cAlias, cField) --> nBytesAvail
  8.  
  9. PARAMETERS:
  10.  
  11. cAlias : Alias Name of work area for text
  12. cField : Field name in the cALias work area for text
  13.  
  14. SHORT:
  15.  
  16. Determine the number of recyclable bytes in a LineEdit comment database.
  17.  
  18. DESCRIPTION:
  19.  
  20. _LineEditAvail() returns the amount (number of bytes) of recycleable
  21. storage space in the specified LineEdit database.  This represents how
  22. many additional bytes of storage may be added to the file without it
  23. growing by even one byte.
  24.  
  25. See _LineEditGet() for a full description.
  26.  
  27. NOTE:
  28.  
  29.  
  30.  
  31. EXAMPLE:
  32.  
  33. _LineEditAvail('ACCOUNTS','COMMENTS')
  34.  
  35. Result: The LineEdit database specified by cAlias is examined and the
  36. number of bytes of free space it contains in the cField field is returned.
  37.  
  38. In this case, the LineEdit database is open and aliased as ACCOUNTS and
  39. the field name is COMMENTS.
  40.  
  41. ******************************************************************************/
  42.